Add VLAN in UCS with PowerShell

Mostly I created VLANs in UCS with the GUI, but how do we do this in PowerShell? When I have to create a lot of new VLANs, I want to do this in CLI 😎 The weird thing when starting with Cisco PowerShell Module is that you have to insert your credentials on nearly every command.   #Load Cisco UCS PS Module Import-Module CiscoUcsPS #Creds $ucsUserName = “myuser” $ucsPassword = “myp@ssword” $ucsSysName1 = “my-ucs-manager” # The UCSM connection requires a PSCredential to … Continue reading Add VLAN in UCS with PowerShell